home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Wildcat Files 2
/
The Wildcat Files 2 (Arsenal Computer).ISO
/
qm-util
/
mci-mail.scr
< prev
next >
Wrap
Text File
|
1994-04-02
|
2KB
|
62 lines
;
; Linked script for MCI-MAIL basic service
; Link it to your Qmodem phone directory entry for MCI-MAIL.
; As is, this script prints all your mail, then disconnects.
;
; USE YOUR WORD PROCESSOR TO EDIT THIS FILE TO INCLUDE
; [1] Your MCI-Mail username
; [2] Your MCI-Mail password
; [3] Any MCI-Mail command(s)
;
;
; Note: examples are for standard, not advanced service
;
NOTE ** LOGON TO MCI-MAIL VIA DIRECT CONNECT **
TIMEOUT 60
TURNON XON/XOFF
TURNOFF ECHO LINEFEED
SEND "^M" ; MCI-Mail 'logon' is CR
WAITFOR "user name:" ; Look for UserID prompt
SEND "USERNAME^M" ; [1] Send your MCI-Mail user name
; followed by CR
WAITFOR "Password: " ; Wait for MCI-Mail password prompt
SEND "FAKE-PASSWORD^M" ; [2] Send your password
TURNON PRINT ; Turn on your printer
WAITFOR "<RETURN> to continue" ; Wait for MCI-Mail to Request your input
SEND "^M" ; Send a CR
WAITFOR "or EXIT):" ; Wait for MCI-Mail to Request your input
SEND "PRINT^M" ; [3] Select PRINT to print messages nonstop
WAITFOR "(or MENU or EXIT):" ; Wait for MCI-Mail to Request your input
SEND "ALL^M" ; [3] Select ALL to print incoming messages
; only or INBOX to print just incoming
; messages
WAITFOR "<RETURN> to continue" ; Wait for MCI-Mail to Request your input
SEND "^M" ; Send a CR
WAITFOR "(or MENU or EXIT):" ; Wait for MCI-Mail to Request your input
SEND "EXIT^M" ; [3] Select EXIT to log off
HANGUP ; Disconnect from Phone Line
EXIT ; return control to keyboard